47b26129aef2c098155b021da97bb939ae50d127,intellij/org.eclipse.xtext.idea.builder/xtend-gen/org/eclipse/xtext/idea/build/daemon/XtextBuildDaemon.java,Server,run,#XtextBuildDaemon.Arguments#,71

Before Change


                        XtextBuildDaemon.LOG.info((("No requests within " + Long.valueOf(currentTimeout)) + "ms."));
                        shutdown = true;
                      } else {
                        socketChannel.configureBlocking(true);
                        currentTimeout = arguments.timeout;
                        boolean _serve = this.worker.serve(socketChannel);
                        shutdown = _serve;

After Change


                        XtextBuildDaemon.LOG.info((("No requests within " + Long.valueOf(currentTimeout)) + "ms."));
                        shutdown = true;
                      } else {
                        socketChannel.configureBlocking(true);
                        Socket _socket_1 = socketChannel.socket();
                        _socket_1.setSendBufferSize(ObjectChannel.BUFFER_SIZE);
                        Socket _socket_2 = socketChannel.socket();
                        _socket_2.setReceiveBufferSize(ObjectChannel.BUFFER_SIZE);
                        Socket _socket_3 = socketChannel.socket();
                        _socket_3.setTcpNoDelay(true);